-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add extended-length prefix support #713
Add extended-length prefix support #713
Conversation
✅ Deploy Preview for kaleidoscopic-dango-0cf31d canceled.
|
90f7611
to
f2302cc
Compare
11b5aa0
to
a605177
Compare
@jaimergp PTAL. I'll rebase after you approve since a rebase will make it harder to review the recent changes, which is just a fixture update. |
@@ -120,6 +120,12 @@ def _check_build_key_version(self, proposal): | |||
except Exception as e: | |||
raise TraitError(f"c.CondaStore.build_key_version: {e}") | |||
|
|||
win_extended_length_prefix = Bool( | |||
False, | |||
help="Use the extended-length prefix '\\\\?\\' (Windows-only), default: False", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In general I prefer using r''
strings whenever I have backslashes in the string, but this kind of thing is better enforced by linters and style formatters rather than code reviews. Only leaving it as a statement of preference for a potential discussion down the line, not asking for a change now.
help="Use the extended-length prefix '\\\\?\\' (Windows-only), default: False", | |
help=r"Use the extended-length prefix '\\?\' (Windows-only), default: False", |
Fixes #588.
Description
This pull request:
"\\?\"
) via thewin_extended_length_prefix
optionPull request checklist
Additional information